//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "view
tickets",
tixUrl : "http://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
" +
row[0] +" | " +
row[1] +" " +
row[2] +" | " +
row[3] +" " +
row[4] + " " +
row[5] + " | "+ this.linkText+ " |
";
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-04A
TN_Widget.CreateTable([['One Night of Queen','Harrahs South Shore Showroom','Stateline, NV','Thursday','7/17/2025','8:00 PM','7061033','One-Night-of-Queen-7-17-2025'],['Piff the Magic Dragon','Harrahs South Shore Showroom','Stateline, NV','Friday','7/25/2025','7:30 PM','7096825','Piff-the-Magic-Dragon-7-25-2025'],['Steve Earle','Harrahs South Shore Showroom','Stateline, NV','Wednesday','7/30/2025','8:00 PM','7096831','Steve-Earle-7-30-2025'],['Wayne Newton','Harrahs South Shore Showroom','Stateline, NV','Sunday','9/7/2025','8:00 PM','7243389','Wayne-Newton-9-7-2025'],['The Struts','Harrahs South Shore Showroom','Stateline, NV','Sunday','9/14/2025','8:00 PM','7094950','The-Struts-9-14-2025'],['Get The Led Out - Tribute Band','Harrahs South Shore Showroom','Stateline, NV','Tuesday','9/23/2025','8:00 PM','7233968','Get-The-Led-Out---Tribute-Band-9-23-2025'],['Rocky Horror Picture Show','Harrahs South Shore Showroom','Stateline, NV','Friday','10/3/2025','8:00 PM','7111628','Rocky-Horror-Picture-Show-10-3-2025'],['Penny and Sparrow','Harrahs South Shore Showroom','Stateline, NV','Sunday','10/12/2025','8:00 PM','7106590','Penny-and-Sparrow-10-12-2025'],['Alfred Robles','Harrahs South Shore Showroom','Stateline, NV','Friday','10/17/2025','7:00 PM','7072039','Alfred-Robles-10-17-2025'],['Allen Stone & Ripe','Harrahs South Shore Showroom','Stateline, NV','Sunday','10/19/2025','8:00 PM','7235497','Allen-Stone---Ripe-10-19-2025'],['Andy Bell','Harrahs South Shore Showroom','Stateline, NV','Saturday','12/6/2025','7:30 PM','7108108','Andy-Bell-12-6-2025']],'South Shore Room at Harrahs Lake','http://www.ticketnetwork.com/ticket/South-Shore-Room-at-Harrahs-Lake-events.aspx');